This presentation is part of the Developing Data Products Coursera.org course project submission.
It is an R Presentation generated with RStudio.
7th September 2021
This presentation is part of the Developing Data Products Coursera.org course project submission.
It is an R Presentation generated with RStudio.
library(plotly) plot_ly(mtcars, x = mtcars$wt, y = mtcars$mpg, mode = "markers")
plot_ly(data = mtcars, x = mtcars$wt, y = mtcars$mpg,
mode = "markers", color = as.factor(mtcars$cyl))